home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC-SIG: World of Games
/
PC-SIG World of Games (CDRM1080710) (1993).iso
/
ENT
/
DISK3514.ZIP
/
INSTALL.BAT
< prev
next >
Wrap
DOS Batch File
|
1992-04-23
|
1KB
|
48 lines
@echo off
cls
echo
echo
echo
echo This program will extract the KrisKros software into the following directory:
echo
if "%1"=="" echo C:\KRIS
if not "%1"=="" echo %1
echo
echo KrisKros requires approximately 450K of free disk space. Please make sure
echo that you have enough disk space available to complete the installation.
echo
echo If you wish to install KrisKros to a disk and/or directory other than the
echo one shown above, press [Ctrl]-[Break] now to abort this installation process
echo and then type the following:
echo
echo INSTALL d:\dirname
echo
echo Where d is the disk drive letter and dirname is the name of the directory.
echo
echo Press any key now to proceed with the installation described above...
pause > nul
cls
echo
echo
echo
if "%1"=="" goto default
KRIS15A %1
goto status
:default
KRIS15A C:\KRIS
:status
echo
echo
if not errorlevel==1 goto success
echo KrisKros installation failure!
echo
echo Make certain that a valid disk and/or directory has been specified. Also,
echo verify that there is at least 450K of available space on the specified disk.
goto end
:success
echo KrisKros installation successfully completed!
echo
echo Please view the README.1ST file before using KrisKros.
:end
echo